home *** CD-ROM | disk | FTP | other *** search
- /*
- * (c) Copyright 1992 by Panagiotis Tsirigotis
- * All rights reserved. The file named COPYRIGHT specifies the terms
- * and conditions for redistribution.
- */
-
- /*
- * $Id: impl.h,v 5.1 1992/10/10 07:23:18 panos Exp $
- */
-
- #ifndef NULL
- #define NULL 0
- #endif
-
- #ifndef FALSE
- #define FALSE 0
- #define TRUE 1
- #endif
-
- #define PRIVATE static
-
- #define SLOTS_PER_CHUNK 100
-
- #define POINTER __fsma_pointer
- #define MINSIZE sizeof( POINTER )
-
- #define CHUNK_HEADER( p ) ((union __fsma_chunk_header *)(p))
-
-